home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / shopdrop.swf / scripts / DefineButton2_791 / BUTTONCONDACTION on(release).as next >
Text File  |  2007-09-27  |  244b  |  14 lines

  1. on(release){
  2.    _global.oSound.playSnd("clickArrow");
  3.    if(_global.bMute == true)
  4.    {
  5.       _global.bMute = false;
  6.       this.gotoAndStop("on");
  7.    }
  8.    else
  9.    {
  10.       _global.bMute = true;
  11.       this.gotoAndStop("off");
  12.    }
  13. }
  14.